home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / events / StyleEvent.as < prev    next >
Text File  |  2009-02-12  |  972b  |  35 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import flash.events.ProgressEvent;
  5.    import mx.core.mx_internal;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class StyleEvent extends ProgressEvent
  10.    {
  11.       
  12.       mx_internal static const VERSION:String = "3.0.0.0";
  13.       
  14.       public static const COMPLETE:String = "complete";
  15.       
  16.       public static const PROGRESS:String = "progress";
  17.       
  18.       public static const ERROR:String = "error";
  19.        
  20.       
  21.       public var errorText:String;
  22.       
  23.       public function StyleEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:uint = 0, param5:uint = 0, param6:String = null)
  24.       {
  25.          super(param1,param2,param3,param4,param5);
  26.          this.errorText = param6;
  27.       }
  28.       
  29.       override public function clone() : Event
  30.       {
  31.          return new StyleEvent(type,bubbles,cancelable,bytesLoaded,bytesTotal,errorText);
  32.       }
  33.    }
  34. }
  35.